home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / msj / v07n03 / debug.exe / BADAPP < prev    next >
Encoding:
Text File  |  1992-05-01  |  279 b   |  13 lines

  1. all: badapp.exe
  2.  
  3. badapp.res : badapp.rc badapp.h
  4.   rc -r badapp.rc
  5.  
  6. badapp.obj : badapp.c badapp.h
  7.   cl -c -AM -Gsw -Od -Zidpe badapp.c
  8.  
  9. badapp.exe : badapp.obj badapp.res
  10.   link /CO/NOE/NOD badapp,/align:16,,libw mlibcew,badapp.def
  11.   rc -v -k -t -30 badapp.res
  12.    
  13.